home *** CD-ROM | disk | FTP | other *** search
/ 9-Digit Zip Code Directory / 9-Digit Zip Code Directory (American Business Information) (ABIZIP-12).ISO / z4src.zip / ODBCVER.H < prev    next >
C/C++ Source or Header  |  1992-09-15  |  814b  |  24 lines

  1. /*--------------------------------------------------------------------------
  2.   ODBCVer.h -- ODBC Version info
  3. --------------------------------------------------------------------------*/
  4.  
  5.  
  6. // Includes ----------------------------------------------------------------
  7. #include  <ver.h>                         // Version defines
  8.  
  9.  
  10. // Constants ---------------------------------------------------------------
  11. #define VER_FILEVERSION 01,00,00,00
  12. #define VER_FILEVERSION_STR " 1.00.0000\0"
  13. #define VER_PRODUCTVERSION 01,00,00,00
  14. #define VER_PRODUCTVERSION_STR " 1.00.0000\0"
  15.  
  16. #define VER_FILEFLAGSMASK (VS_FF_DEBUG | VS_FF_PRERELEASE)
  17. #ifdef DEBUG
  18. #define VER_FILEFLAGS (VS_FF_DEBUG | VS_FF_PRERELEASE)
  19. #else
  20. #define VER_FILEFLAGS (VS_FF_PRERELEASE)
  21. #endif
  22.  
  23. #define VER_FILEOS  VOS_DOS_WINDOWS16
  24.